/* Default class for an overlay */
.ow-overlay, .ae-modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  background: #424242;
  opacity: 0.8;
}

/* Default class for both hidden overlay and modal window */
.ow-closed, .ae-modal-closed, .ae-modal-overlay-closed {
  display: none;
}

/* Default class for modal window */
.ae-modal {
  position: fixed;
  z-index: 20;
  min-height: 300px;
  height: 80%;
  left: 50%;
  top: 50px;
  min-width: 300px;
  width: 50%;

  background: none;
}

.ae-modal iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border: 0px;
    
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;

    -moz-box-shadow: 4px 4px 14px #000;
    -webkit-box-shadow: 4px 4px 14px #000;
    box-shadow: 4px 4px 14px #000;
}

